* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 20px;
}



.time {
    font-size: 14px;
}

.status-icons img {
    height: 16px;
    margin-left: 5px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

.checkmark-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.success-message {
    background-color: #00c000;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}

.experience-message {
    font-size: 18px;
    margin-bottom: 60px;
}

.continue-btn {
    background-color: #333;
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.continue-btn:hover {
    background-color: #444;
}

.continue-btn:active {
    background-color: #222;
}
